home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / UTILITY / CMDED2E6.ARJ / BIOS.INC < prev    next >
Text File  |  1992-06-30  |  332b  |  31 lines

  1.  
  2. @SetCurPos macro one,two,three
  3.     mov    bh,three
  4.     mov    ah,2
  5.     int    10h
  6.     endm
  7.  
  8. @GetCur    macro    one
  9.     mov    bh,one
  10.     mov    ah,3
  11.     int    10h
  12.     endm
  13.  
  14. @SetCurSz macro    one,two
  15.     mov    ch,one
  16.     mov    cl,two
  17.     mov    ah,1
  18.     int    10h
  19.     endm
  20.  
  21. @GetMode macro
  22.     mov    ah,0Fh
  23.     int    10h
  24.     endm
  25.  
  26. @GetChAtr macro    one
  27.     mov    bh,one
  28.     mov    ah,8
  29.     int    10h
  30.     endm
  31.